vendor/golang.org/x/net/http2/hpack.headerFieldTable.evictCount (field)

10 uses

	vendor/golang.org/x/net/http2/hpack (current package)
		static_table.go#L7: 	evictCount: 0,
		tables.go#L30: 	evictCount uint64
		tables.go#L57: 	id := uint64(t.len()) + t.evictCount + 1
		tables.go#L70: 		id := t.evictCount + uint64(k) + 1
		tables.go#L83: 	if t.evictCount+uint64(n) < t.evictCount {
		tables.go#L86: 	t.evictCount += uint64(n)
		tables.go#L117: 	if id <= t.evictCount {
		tables.go#L118: 		panic(fmt.Sprintf("id (%v) <= evictCount (%v)", id, t.evictCount))
		tables.go#L120: 	k := id - t.evictCount - 1 // convert id to an index t.ents[k]